home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / role / DebugTool_111.lha / srcDMakefile < prev    next >
Makefile  |  1992-10-29  |  462b  |  21 lines

  1. # DMakefile for Infocom Debugging Tool 
  2. # (works with DICE 2.06.40)
  3.  
  4. CC    =    dcc
  5.  
  6. SRCS    =    alphabet.c check.c decode.c extern.c header.c macros.c main.c \
  7.         object.c recog.c stuffing.c tree.c vars.c vocab.c
  8.  
  9. OBJS     =     alphabet.o check.o decode.o extern.o header.o macros.o main.o \
  10.         object.o recog.o stuffing.o tree.o vars.c vocab.o
  11.  
  12. DebugTool:    $(OBJS)
  13.         dcc -o DebugTool $(OBJS)
  14.  
  15. $(OBJS):    $(SRCS)
  16.         dcc -c %(right)
  17.  
  18. $(OBJS):    frobnitz.h
  19.  
  20. # (c) 1992 by Sascha Wildner
  21.